summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-11-28 16:19:51 +0100
committerLioncash <mathew1800@gmail.com>2022-11-28 16:19:53 +0100
commitc2c9b4474981e075a5e21ce0deed8667c1e49510 (patch)
treef63fd8ba8159b7b61aea4bd48bca6542122e6c35
parentMerge pull request #9325 from german77/default_by_default (diff)
downloadyuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar.gz
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar.bz2
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar.lz
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar.xz
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar.zst
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.zip
-rw-r--r--src/common/cache_management.cpp5
-rw-r--r--src/common/cache_management.h2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/common/cache_management.cpp b/src/common/cache_management.cpp
index 57810b76a..ed353828a 100644
--- a/src/common/cache_management.cpp
+++ b/src/common/cache_management.cpp
@@ -1,11 +1,10 @@
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
+#include <cstdint>
#include <cstring>
-#include "alignment.h"
-#include "cache_management.h"
-#include "common_types.h"
+#include "common/cache_management.h"
namespace Common {
diff --git a/src/common/cache_management.h b/src/common/cache_management.h
index e467b87e4..038323e95 100644
--- a/src/common/cache_management.h
+++ b/src/common/cache_management.h
@@ -3,7 +3,7 @@
#pragma once
-#include "stdlib.h"
+#include <cstddef>
namespace Common {